home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Power 1997 November
/
MACPOWER-1997-11.ISO.7z
/
MACPOWER-1997-11.ISO
/
Shareware Paradise
/
Download Deputy 'Lux 68k.sit
/
Download Deputy 'Lux 68k
/
Download Deputy Deluxe 68k.rsrc
/
STR#_5000.txt
< prev
next >
Wrap
Text File
|
1997-09-21
|
2KB
|
153 lines
wordDelimiter=put the wordDelimiter into oldDelimiter
set the wordDelimiter to |<character>|
set the wordDelimiter to oldDelimiter
numberFormat=put the numberFormat into oldFormat
set the numberFormat to |<character>|
set the numberFormat to oldFormat
multiEffect=set the multiEffect to true
|
set the multiEffect to false
lockMessages=set the lockMessages to true
|
set the lockMessages to false
lockScreen=set the lockScreen to true
|
set the lockScreen to false
lineDelimiter=put the lineDelimiter into oldDelimiter
set the lineDelimiter to |<character>|
set the lineDelimiter to oldDelimiter
itemDelimiter=put the itemDelimiter into oldDelimiter
set the itemDelimiter to |<character>|
set the itemDelimiter to oldDelimiter
--
repeat with...=repeat with |<variable>| = <value1> to <value2>
end repeat
repeat while...=repeat while |<logical>|
end repeat
repeat until...=repeat until |<logical>|
end repeat
repeat for...=repeat for |<value>| times
end repeat
repeat forever...=repeat forever
|
end repeat
--
switch...case...end=switch |<condition>|
case <value1>
-- case 1 statements
exit switch
case <value2>
-- case 2 statements
exit switch
end switch
if...then...else if...else...end=if |<logical1>| then
-- logical 1 true statements
else if <logical2> then
-- logical 2 true statements
else
-- both false statements
end if
if...then...else...end=if |<logical>| then
-- true statements
else
-- false statements
end if
if...then...else...=if |<logical>| then
-- true statements
else <false_statements>
if...then...end=if |<logical>| then
-- true statements
end if
if...then...=if |<logical>| then <true_statements>
--
on quitSuperCard...=on quitSuperCard
|
end quitSuperCard
on closeProject...=on closeProject
|
end closeProject
on closeWindow...=on closeWindow
|
end closeWindow
on closeBackground...=on closeBackground
|
end closeBackground
on closeCard...=on closeCard
|
end closeCard
--
on openCard...=on openCard
|
end openCard
on openBackground...=on openBackground
|
end openBackground
on openWindow...=on openWindow
|
end openWindow
on openProject...=on openProject
|
end openProject
on startUp=on startUp
|
end startUp
--
function...=function xxx
|
end xxx
on...=on xxx
|
end xxx